AWS Elastic Load Balancer (ELB)
AWS Elastic Load Balancer (ELB) automatically distributes incoming application traffic across multiple targets, such as EC2 instances, containers, and IP addresses. ELB helps ensure application availability and fault tolerance by spreading traffic evenly across multiple resources.
Key Features
- Load Balancing Across Multiple Targets: ELB distributes traffic across multiple targets in one or more Availability Zones, ensuring application scalability and fault tolerance.
- Supports Multiple Protocols: ELB supports HTTP, HTTPS, TCP, and UDP protocols, making it suitable for a wide range of applications.
- Three Types of Load Balancers: ELB offers three types of load balancers: Application Load Balancer (ALB), Network Load Balancer (NLB), and Gateway Load Balancer (GLB), each optimized for different use cases.
- Automatic Scaling: ELB scales its capacity to handle the traffic load as your application demand increases or decreases, without manual intervention.
- Health Checks: ELB continuously monitors the health of the registered targets and routes traffic only to healthy instances.
- Integration with AWS Services: ELB integrates seamlessly with other AWS services like Auto Scaling, Route 53, CloudWatch, and more, providing a comprehensive solution for scaling and monitoring applications.
Types of Elastic Load Balancers
- Application Load Balancer (ALB): Operates at the application layer (Layer 7) and is ideal for web applications. ALB supports advanced request routing, SSL termination, and integrates with AWS WAF for security.
- Network Load Balancer (NLB): Operates at the transport layer (Layer 4) and is designed for applications that require ultra-low latency and high throughput. NLB supports static IP addresses and can handle millions of requests per second.
- Gateway Load Balancer (GLB): Operates at Layer 3 and Layer 4 and is used for deploying and managing virtual appliances. GLB simplifies the integration of third-party virtual appliances into your network.
Architecture Overview
The following diagram illustrates how AWS Elastic Load Balancer distributes traffic across multiple targets:
- Clients: End-users or applications that send requests to your application.
- Elastic Load Balancer: The ELB distributes incoming traffic across registered targets (e.g., EC2 instances) in one or more Availability Zones.
- Registered Targets: The EC2 instances, containers, or IP addresses that are registered with the ELB to receive traffic.
- Auto Scaling Groups: Automatically adjusts the number of registered targets based on demand.
- Availability Zones: ELB distributes traffic across multiple Availability Zones to increase fault tolerance and reduce latency.
Use Cases
- High Availability: Improve the availability of your application by distributing traffic across multiple targets and Availability Zones.
- Scalability: Automatically scale your application to handle traffic spikes by adding or removing targets based on demand.
- Load Distribution: Evenly distribute traffic across multiple instances or containers to optimize resource utilization and reduce latency.
- Security: Use SSL termination on the ELB to offload SSL processing from your application servers, and integrate with AWS WAF to protect against common web exploits.
Integration with Other AWS Services
AWS Elastic Load Balancer integrates with several AWS services to provide a comprehensive solution:
- AWS Auto Scaling: Automatically scale the number of instances or containers in response to traffic demand.
- Amazon Route 53: Use Route 53 to direct traffic to your ELB using DNS-based load balancing.
- AWS CloudWatch: Monitor ELB performance and health metrics, and set alarms for automatic response to changes in traffic patterns.
- AWS Certificate Manager (ACM): Manage SSL/TLS certificates for your ELB, simplifying the process of securing your application.
- AWS WAF: Protect your application from common web exploits by integrating AWS WAF with your ALB.
Things to Remember for the Exam
- Types of Load Balancers: Be familiar with the differences between ALB, NLB, and GLB, and understand their use cases.
- Health Checks: Understand how ELB performs health checks and how it routes traffic only to healthy targets.
- Cross-Zone Load Balancing: Know how cross-zone load balancing works and when to enable it.
- SSL Termination: Remember that ALB and NLB support SSL termination, offloading SSL processing from your application servers.
- Sticky Sessions: Understand how sticky sessions (session affinity) work with ALB and NLB to maintain user session state.
- Pricing: Be aware of ELB pricing models, including per-hour and per-GB data processed charges.